home *** CD-ROM | disk | FTP | other *** search
/ Champak 99 / (Vol 99) Jan 19 2010.iso / Games / bomb_bandits.swf / scripts / DefineSprite_203 / frame_84 / DoAction.as
Text File  |  2010-01-19  |  359b  |  17 lines

  1. i = 1;
  2. while(i < _root.chartSize + 1)
  3. {
  4.    this["scoreRow" + i].num = i + offset + ".";
  5.    this["scoreRow" + i].name = _root["topname" + (i + offset)];
  6.    this["scoreRow" + i].score = _root["topscore" + (i + offset)];
  7.    i++;
  8. }
  9. if(offsetDo == "up")
  10. {
  11.    offset >= 40 ? 0 : offset++;
  12. }
  13. if(offsetDo == "down")
  14. {
  15.    offset <= 0 ? 0 : offset--;
  16. }
  17.